home *** CD-ROM | disk | FTP | other *** search
- unit DbConsts;
-
- interface
-
- resourcestring
- SInvalidFieldSize = 'Invalid field size';
- SInvalidFieldRegistration = 'Invalid field registration';
- SUnknownFieldType = 'Field ''%s'' is of an unknown type';
- SFieldNameMissing = 'Field name missing';
- SDuplicateFieldName = 'Duplicate field name ''%s''';
- SFieldNotFound = '%s: Field ''%s'' not found';
- SFieldAccessError = 'Cannot access field ''%s'' as type %s';
- SFieldValueError = 'Invalid value for field ''%s''';
- SFieldRangeError = '%g is not a valid value for field ''%s''. The allowed range is %g to %g';
- SInvalidIntegerValue = '''%s'' is not a valid integer value for field ''%s''';
- SInvalidBoolValue = '''%s'' is not a valid boolean value for field ''%s''';
- SInvalidFloatValue = '''%s'' is not a valid floating point value for field ''%s''';
- SFieldTypeMismatch = 'Field ''%s'' is not of the expected type';
- SInvalidVarByteArray = 'Invalid variant type or size';
- SFieldOutOfRange = 'Value of field ''%s'' is out of range';
- SBCDOverflow = '(Overflow)';
- SFieldRequired = 'Field ''%s'' must have a value';
- SDataSetMissing = 'Field ''%s'' has no dataset';
- SInvalidCalcType = 'Field ''%s'' cannot be a calculated or lookup field';
- SFieldReadOnly = 'Field ''%s'' cannot be modified';
- SFieldIndexError = 'Field index out of range';
- SNoFieldIndexes = 'No index currently active';
- SNotIndexField = 'Field ''%s'' is not indexed and cannot be modified';
- SIndexFieldMissing = 'Cannot access index field ''%s''';
- SDuplicateIndexName = 'Duplicate index name ''%s''';
- SNoIndexForFields = '''%s'' has no index for fields ''%s''';
- SCircularDataLink = 'Circular datalinks are not allowed';
- SLookupInfoError = 'Lookup information for field ''%s'' is incomplete';
- SDataSourceChange = 'DataSource cannot be changed';
- SDataSetOpen = 'Cannot perform this operation on an open dataset';
- SNotEditing = 'Dataset not in edit or insert mode';
- SDataSetClosed = 'Cannot perform this operation on a closed dataset';
- SDataSetEmpty = 'Cannot perform this operation on an empty dataset';
- SDataSetReadOnly = 'Cannot modify a read-only dataset';
- SAutoSessionExclusive = 'Cannot enable AutoSessionName property with more than one session on a form or data-module';
- SAutoSessionExists = 'Cannot add a session to the form or data-module while session ''%s'' has AutoSessionName enabled';
- SAutoSessionActive = 'Cannot modify SessionName while AutoSessionName is enabled';
- SExprTermination = 'Filter expression incorrectly terminated';
- SExprNameError = 'Unterminated field name';
- SExprStringError = 'Unterminated string constant';
- SExprInvalidChar = 'Invalid filter expression character: ''%s''';
- SExprNoRParen = ''')'' expected but %s found';
- SExprExpected = 'Expression expected but %s found';
- SExprBadField = 'Field ''%s'' cannot be used in a filter expression';
- SExprBadNullTest = 'NULL only allowed with ''='' and ''<>''';
- SExprRangeError = 'Constant out of range';
- SExprNotBoolean = 'Field ''%s'' is not of type Boolean';
- SExprIncorrect = 'Incorrectly formed filter expression';
- SExprNothing = 'nothing';
- STextFalse = 'False';
- STextTrue = 'True';
-
- { DBClient }
- SNoDataProvider = 'Missing data provider or data packet';
- SInvalidDataPacket = 'Invalid data packet';
- SRefreshError = 'Must apply updates before refreshing data';
- SExportProvider = 'Export %s from data module';
- SProviderInvalid = 'Invalid provider. Provider was freed by the application server';
- SClientDSAssignData = 'Assign Local &Data...';
- SLoadFromFile = '&Load from file...';
- SSaveToFile = 'Save to f&ile...';
- SClientDSClearData = '&Clear Data';
- SClientDataSetEditor = '%s.%s Data';
- SClientDataFilter = 'Client DataSet (*.cds)|*.cds|All Files (*.*)|*.*';
- SInvalidProviderName = 'Provider name was not recognized by the server';
- SServerNameBlank = 'Cannot connect, %s must contain a valid ServerName or ServerGUID';
-
- { DBCtrls }
- SFirstRecord = 'First record';
- SPriorRecord = 'Prior record';
- SNextRecord = 'Next record';
- SLastRecord = 'Last record';
- SInsertRecord = 'Insert record';
- SDeleteRecord = 'Delete record';
- SEditRecord = 'Edit record';
- SPostEdit = 'Post edit';
- SCancelEdit = 'Cancel edit';
- SRefreshRecord = 'Refresh data';
- SDeleteRecordQuestion = 'Delete record?';
- SDeleteMultipleRecordsQuestion = 'Delete all selected records?';
- SRecordNotFound = 'Record not found';
- SDataSourceFixed = 'Operation not allowed in a DBCtrlGrid';
- SNotReplicatable = 'Control cannot be used in a DBCtrlGrid';
- SPropDefByLookup = 'Property already defined by lookup field';
- STooManyColumns = 'Grid requested to display more than 256 columns';
-
- { MIDASCon }
- SSocketReadError = 'Error reading from socket';
- SSocketWriteError = 'Error writing to socket';
- SBadVariantType = 'Unsupported variant type: %s';
- SInvalidAction = 'Invalid action received';
- SConnectionLost = 'Connection lost';
- SComputerNameRequired = 'ComputerName is required';
-
- { ScktSrvr }
- SErrChangePort = 'Cannot change the port when there are active connections';
- SErrClose = 'Cannot exit when there are active connections';
- SButtonApply = 'Apply';
- SButtonExit = 'Exit';
-
- implementation
-
- end.
-